home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 0481 / constant.txt < prev    next >
Text File  |  1997-04-02  |  1KB  |  34 lines

  1. ''''''''''''''''''''''''''''
  2. ' MODIFIED Visual Basic global constant file, containing
  3. ' only constants used in the program. This file can be loaded
  4. ' into a code module.
  5. '
  6. ' Some constants are commented out because they have
  7. ' duplicates (e.g., NONE appears several places).
  8. '
  9. ' If you are updating a Visual Basic application written with
  10. ' an older version, you should replace your global constants
  11. ' with the constants in this file.
  12. '
  13. ''''''''''''''''''''''''''''
  14.  
  15. ' MousePointer
  16. Global Const DEFAULT = 0        ' 0 - Default
  17. Global Const HOURGLASS = 11     ' 11 - Hourglass
  18.  
  19. ' Function Parameters
  20. ' MsgBox parameters
  21. Global Const MB_OK = 0                 ' OK button only
  22.  
  23. Global Const MB_ICONEXCLAMATION = 48   ' Warning message
  24.  
  25. ' MsgBox return values
  26. Global Const IDOK = 1                  ' OK button pressed
  27. Global Const IDABORT = 3               ' Abort button pressed
  28. Global Const IDYES = 6                 ' Yes button pressed
  29.  
  30. ' SetAttr, Dir, GetAttr functions
  31. Global Const ATTR_VOLUME = 8
  32. Global Const ATTR_DIRECTORY = 16
  33.  
  34.